home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / ctutor.arc / DUMBCONV.C < prev    next >
Text File  |  1988-02-28  |  512b  |  18 lines

  1. main()
  2. {
  3. int x1,x2,x3;
  4.  
  5.    printf("Centigrade to Farenheit temperature table\n\n");
  6.  
  7.    for(x1 = -2;x1 <= 12;x1 = x1 + 1){
  8.       x3 = 10 * x1;
  9.       x2 = 32 + (x3 * 9)/5;
  10.       printf("  C =%4d   F =%4d  ",x3,x2);
  11.       if (x3 == 0)
  12.          printf(" Freezing point of water");
  13.       if (x3 == 100)
  14.          printf(" Boiling point of water");
  15.       printf("\n");
  16.    }
  17. }
  18.